home *** CD-ROM | disk | FTP | other *** search
- audio.onPress = function()
- {
- audclik = [1,2];
- if(click == 1)
- {
- click = 0;
- }
- else
- {
- click++;
- }
- audio.gotoAndStop(audclik[click]);
- if(audclik[click] == 2)
- {
- _root.globalsoundcontrol.setVolume(0);
- }
- else
- {
- _root.globalsoundcontrol.setVolume(100);
- }
- };
- audio.onRollOver = function()
- {
- _root.holdit = true;
- _root.cursorz.gotoAndStop(3);
- };
- audio.onRollOut = function()
- {
- _root.holdit = false;
- _root.cursorz.gotoAndStop(1);
- };
-